body{
    height: 500px;
    gap: 10px;
    display: flex;
	flex-direction: column;}
@media screen and (max-width: 800px) {
	body {
		flex-direction: column;}
    }

header{
    text-align: center;
    background-color: lightblue;
    border-radius: 5px;
    border-style: solid;
}
nav{
    background-color: lightblue;
    border-radius: 5px;
    border-style: solid;
    font-size: larger;
    font-family: Verdana, Geneva, Tahoma, sans-serif;  
}
.nav-item a {
	color: black;
	text-decoration: none;   
}
.navigation {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
}
.nav-item {
	margin: 0.5rem;
	padding: 1rem;
    a:hover{background-color: white;}
}

main{
    text-align: center;
    background-color: lightblue;
    border-radius: 5px;
    border-style: solid;
    padding-bottom: 10px;
}
img{
    height: 250px;
    width: 250px;
    padding-top: 50px;
}
li{
    margin-right: 10px;
    margin-left: 10px;
}

